@import url(https://fonts.googleapis.com/css2?family=Inter:opsz,wght@14..32,100..900&display=swap);

/*
    font-family: Inter, sans-serif;
*/

* {
    box-sizing: border-box;
}

html {
    height: 100%;
}

body {
    font-weight: 400;
    font-size: 18px;
    line-height: 1.4;
    font-family: 'Inter', sans-serif;
    color: #000;
    background-color: #EBEAE8;
    height: 100%;
}

.step-button {
    font-family: 'Inter', sans-serif;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 52px;
    width: 100%;
    padding: 5px 10px;
    background: linear-gradient(to bottom, #83D5FB 0%, #599EE6 100%);
    box-shadow: inset 0 -4px 10px #1067C1, inset 0 4px 20px #B5D9FF, inset 0 4px 10px rgba(0, 0, 0, 0.25);
    border-radius: 26px;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.2;
    color: #fff;
    text-transform: uppercase;
}

.step-button--primary {
    opacity: 0.5;
}

.step-buttons--wrap {
    display: flex;
    gap: 10px;
    margin-top: 30px;
}

.step-subtitle .color {
    margin: 0 5px;
    text-transform: capitalize;
    font-weight: 600;
    display: inline-block;
}

.layout {
    display: flex;
    align-items: stretch;
    height: 100%;
}

.step-title {
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.title-lg {
    font-size: 36px;
    line-height: 1.2;
}

.title-sm {
    font-size: 18px;
}

.step-subtitle {
    margin-bottom: 15px;
}

.video-block {
    background-color: #fff;
    border: 6px solid #fff;
    border-radius: 20px;
    position: absolute;
    top: 0;
    left: 8px;
    right: 8px;
    bottom: 0;
}

.video-block::after {
    content: '';
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 38.89%, rgba(255, 255, 255, 0.8) 86.31%);
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    border-radius: 0 0 12px 12px;
}

.video-block .video {
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: top;
    object-position: top;
    height: 100%;
    border-radius: 14px;
}

.top-bar {
    -webkit-animation: fade-in-bottom 0.35s linear .25s both;
    animation: fade-in-bottom 0.35s linear .25s both;
    display: flex;
    align-items: center;
    gap: 8px;
    position: absolute;
    top: 15px;
    left: 30px;
    color: #fff;
    line-height: 1;
}

.found-number {
    background-color: #926AAA;
    border-radius: 10px;
    padding: 2px 6px;
}

.main-block {
    max-width: 450px;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    padding: 30px 0;
}

.steps-list {
    width: 100%;
    height: 100%;
    padding: 30px 28px;
    display: flex;
    align-items: flex-end;
    position: relative;
}

.step-item {
    position: relative;
    z-index: 9;
    display: none;
    width: 100%;
    -webkit-animation: fade-in-bottom 0.35s linear .5s both;
    animation: fade-in-bottom 0.35s linear .5s both;
}

@-webkit-keyframes fade-in-bottom {
    0% {
        transform: translateY(10px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fade-in-bottom {
    0% {
        transform: translateY(10px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.step-item.active {
    display: block;
}

.steps-list--union {
    width: 100%;
}

.ta-center {
    text-align: center;
}

/* Unsubscribe */
.unsubscribe {
	width: 100%;
	height: auto;
	position: fixed;
	right: 0;
	bottom: 5px;
	left: 0;
	text-align: center;
	z-index: 100;
}
.unsubscribe a {
	font-size: 12px;
	font-weight: normal;
	color: #000;
	text-decoration: none;
}
.unsubscribe a:hover {
	text-decoration: underline;
}

/* RTL */
.lang-he {
    direction: rtl;
}
.lang-he .top-bar {
    left: auto;
    right: 30px;
}

@media (max-width: 600px) {
    .lang-no .step-item:first-child .title-lg,
    .lang-sv .step-item:first-child .title-lg,
    .lang-da .step-item:first-child .title-lg,
    .lang-en .step-item:last-child .title-lg,
    html[lang="en"] .step-item:last-child .title-lg,
    .lang-it .step-item:last-child .title-lg {
        font-size: 8vw;
    }
}